home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / commands / stterm / Makefile.gcc < prev    next >
Makefile  |  1990-07-15  |  453b  |  30 lines

  1. CC = mgcc
  2. CFLAGS = -O -DWANT_HCJ_RS232
  3. LFLAGS = -s -z
  4.  
  5. ALL = term write_tty read_tty
  6.  
  7. all: $(ALL)
  8.  
  9. term:    term.o err.o 
  10.     $(CC) -o term term.o err.o $(LFLAGS)
  11.  
  12. write_tty:    write_tty.o do_shell.o
  13.     $(CC) -o write_tty write_tty.o do_shell.o $(LFLAGS)
  14.  
  15. read_tty:    read_tty.o
  16.     $(CC) -o read_tty read_tty.o $(LFLAGS)
  17.  
  18. write_tty.o:    write_tty.c const.h
  19.  
  20. read_tty.o:    read_tty.c const.h
  21.  
  22. term.o:    term.c
  23.  
  24. err.o:    err.c
  25.  
  26. do_shell.o: do_shell.c
  27.  
  28. clean:
  29.     rm -f *.o $(ALL)
  30.